chimney pages
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #0f2a44;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #2f6fed;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box {
  position: relative;
}

.search-box input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 30px;
  width: 220px;
  outline: none;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 10px;
  z-index: 999;
}

.btn-primary {
  background: #2f6fed;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
/* ================= HERO ================= */
.hero {
  display: flex;
  gap: 40px;
  padding: 60px 5%;
  background: #0f2a44;
  color: white;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.brand-strip img {
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
}

.hero-left p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
}

.services-list {
  display: flex;
  gap: 30px;
}

.services-list ul {
  font-size: 14px;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
}

.hero-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-img {
  width: 100%;
  border-radius: 10px;
}

/* ================= PRODUCTS GRID ================= */
.product-page {
  background: #0f2a44;
  padding: 60px 5%;
}

.page-title {
  text-align: center;
  color: white;
  font-size: 36px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #e9edf2;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: auto;   /* ✅ keeps original ratio */
  display: block; /* removes extra spacing */
}
.product-content {
  padding: 15px;
}

.product-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.product-content ul {
  font-size: 14px;
  margin-bottom: 15px;
  padding-left: 18px;
}

.product-btn {
  display: block;
  text-align: center;
  background: #2f6fed;
  color: white;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
}
/* ===== PRODUCT CARD BUTTONS (ADD THIS BELOW product-btn) ===== */
.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* CALL BUTTON */
.call-btn {
  background: #e6ecff;
  color: #2f6fed;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.call-btn:hover {
  background: #d4dcff;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  border: 2px solid #25D366;
  color: #25D366;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.whatsapp-btn:hover {
  background: #25D366;
  color: white;
}
/* ================= SERVICES CARDS ================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 5%;
  background: #0f2a44;
}

.service-card {
  background: #e9edf2;
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 15px;
}

.service-content h3 {
  margin-bottom: 10px;
}

.service-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.call-icon {
  background: #e0e7ff;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.site-footer {
  background: white;
  color: #0f2a44;
  padding: 30px 5%;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.footer-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 60px;
}

.footer-brand-name h3 {
  margin: 0;
}

.footer-copy {
  text-align: right;
  font-size: 14px;
}
/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 9999;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {
  .product-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    flex-direction: column;
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  .logo img {
    height: 70px;
    width: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .navbar-right {
    flex-direction: column;
    width: 100%;
  }

  .search-box {
    width: 100%;
  }

  .search-box input {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* keep your existing product/mobile styles */
  .product-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
  }

  .footer-simple {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-copy {
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    padding: 12px 16px;
  }
}


/* ================= STABILIZER BANNER ================= */
.stabilizer-banner {
  width: 100%;
  background: #0f2b46;
  padding: 20px 5% 30px;
  margin: 0;
  text-align: center;
  box-sizing: border-box;
}

.stabilizer-banner img {
  width: 100%;
  max-width: 1600px;   /* large but controlled */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.banner-caption {
  margin-top: 18px;
}

.banner-caption h2 {
  color: white;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

/* FIX GAP BELOW BANNER */
.stabilizer-banner + .product-page {
  padding-top: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stabilizer-banner {
    padding: 12px 4% 18px;
  }

  .stabilizer-banner img {
    width: 100%;
    border-radius: 6px;
  }

  .banner-caption {
    margin-top: 12px;
  }

  .banner-caption h2 {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .stabilizer-banner + .product-page {
    padding-top: 15px;
  }
}
